home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00114.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  780 b   |  20 lines

  1. global CurrentStep
  2.  
  3. on mouseDown
  4.   if CurrentStep < 12 then
  5.     set CurrentStep to CurrentStep + 1
  6.     set currentPos to 206 + (CurrentStep * 100 / 12)
  7.     set the locV of sprite 47 to currentPos
  8.     set the locV of sprite 4 to 160 - (CurrentStep * 75)
  9.     set the memberNum of sprite 50 to 289 + (4 * CurrentStep)
  10.     set the memberNum of sprite 54 to 290 + (4 * CurrentStep)
  11.     set the memberNum of sprite 58 to 291 + (4 * CurrentStep)
  12.     set the memberNum of sprite 66 to 292 + (4 * CurrentStep)
  13.     set the memberNum of sprite 70 to 293 + (4 * CurrentStep)
  14.     set the memberNum of sprite 74 to 294 + (4 * CurrentStep)
  15.     set the memberNum of sprite 78 to 295 + (4 * CurrentStep)
  16.     set the memberNum of sprite 82 to 296 + (4 * CurrentStep)
  17.     updateStage()
  18.   end if
  19. end
  20.